{"nbformat":4,"nbformat_minor":0,"metadata":{"colab":{"provenance":[],"authorship_tag":"ABX9TyNIgRch3xAIvQqrJQA9kuZv"},"kernelspec":{"name":"python3","display_name":"Python 3"},"language_info":{"name":"python"}},"cells":[{"cell_type":"code","execution_count":1,"metadata":{"id":"Hzj5D2PdkE9v","executionInfo":{"status":"ok","timestamp":1758819110059,"user_tz":-330,"elapsed":7,"user":{"displayName":"YOGESH SAHU","userId":"09036209155327710676"}}},"outputs":[],"source":["reviews = [\n"," \"This phone is amazing, battery lasts all day!\",\n"," \"Worst phone ever, waste of money!\",\n"," \"Buy this product now!!! Limited offer!!!\",\n"," \"Great value for money, highly recommended!\"\n","]"]},{"cell_type":"code","source":["spam_words = [\"buy now\", \"limited offer\", \"click here\", \"free\"]"],"metadata":{"id":"tGU8DKidydgT","executionInfo":{"status":"ok","timestamp":1758819117661,"user_tz":-330,"elapsed":18,"user":{"displayName":"YOGESH SAHU","userId":"09036209155327710676"}}},"execution_count":2,"outputs":[]},{"cell_type":"code","source":["for r in reviews:\n"," if any(word in r.lower() for word in spam_words):\n"," print(\"SPAM:\", r)\n"," else:\n"," print(\"GENUINE:\", r)"],"metadata":{"colab":{"base_uri":"https://localhost:8080/"},"id":"YO5p02NKygcc","executionInfo":{"status":"ok","timestamp":1758819129005,"user_tz":-330,"elapsed":43,"user":{"displayName":"YOGESH SAHU","userId":"09036209155327710676"}},"outputId":"941e69ed-d361-48c6-f289-73d55eaed59a"},"execution_count":3,"outputs":[{"output_type":"stream","name":"stdout","text":["GENUINE: This phone is amazing, battery lasts all day!\n","GENUINE: Worst phone ever, waste of money!\n","SPAM: Buy this product now!!! Limited offer!!!\n","GENUINE: Great value for money, highly recommended!\n"]}]}]}